home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Presentations / Presentations ’97 / Sessions ’97 / Multiplatform Code⁄Data Sharing / HelloBothWorlds / Libraries / gepicture.h < prev    next >
Encoding:
Text File  |  1997-06-26  |  500 b   |  22 lines  |  [TEXT/CWIE]

  1.  
  2. // mail <chelly@eden.com> or surf http://www.eden.com/~chelly for feedback
  3. // free source code - do whatever you like with it
  4.  
  5. // uniform access to mac and universal pictures through common interface
  6.  
  7. #ifndef gepicture_H
  8. #define gepicture_H
  9.  
  10. #include "common.h"
  11.  
  12. struct GEPicture;
  13. typedef GEPicture* GEPictureRef;
  14.  
  15. GEPictureRef    GetGEPicture( int res_id );
  16. Rect            GetGEPictureFrame( GEPictureRef );
  17. void            DrawGEPicture( GEPictureRef, const Rect* );
  18. void            DisposeGEPicture( GEPictureRef );
  19.  
  20. #endif
  21.  
  22.